home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / cpost_1_4.lha / cpostaix.mak < prev    next >
Makefile  |  1995-05-09  |  486b  |  29 lines

  1. CFLAGS = -DOPSYS_AIX
  2. CC     = cc
  3.  
  4. OBJS = \
  5.  cpost.o\
  6.  cpostp1.o\
  7.  cpostp2.o\
  8.  cpostutl.o\
  9.  cpostpar.o\
  10.  ctok.o\
  11.  parsearg.o\
  12.  list.o\
  13.  hash.o\
  14.  tokfile.o
  15.  
  16. cpost: $(OBJS)
  17.     cc -o cpost $(OBJS)
  18.  
  19. cpost.o    : cpost.h  ctok.h tokfile.h parsearg.h cposthdr.h
  20. cpostp1.o  : cpost.h  ctok.h
  21. cpostp2.o  : cpost.h  ctok.h
  22. cpostutl.o : cpost.h  ctok.h tokfile.h
  23. cpostpar.o : cpost.h  ctok.h
  24. ctok.o     : ctok.h
  25. parsearg.o : parsearg.h
  26. list.o     : list.h
  27. hash.o     : hash.h
  28. tokfile.o  : tokfile.h
  29.